@font-face {
  font-family: 'HealTheWorld';
  src: url(images/HealTheWorld.woff) format('woff');
}

@font-face {
  font-family: 'Ethiopian';
  src: url(images/Ethiopian.woff) format('woff');
}

/*General CSS*/
body{
    color: white;
    font-family: 'HealTheWorld';
    background-color:#3D1C2E;
}
footer {
    margin:auto;
    text-align: center;
    position: fixed;
    bottom:0%;
}
a {
    text-decoration: none;
    font-family: 'Ethiopian';
    color: white;
}

nav{
    position: absolute;
    top:3%;
    text-align: center;
    left:47%;
}
nav a{
    text-decoration: underline;
    font-size:30px;
    transition-duration: 0.4s;
    color: white;
    font-size: 30px;
    text-shadow: 0px 0px 10px #7f03fc;
}
nav a:hover{
    text-shadow: 0px 0px 10px #ffffff;
}

#homeTitle{
    padding: 10px 10px 10px 10px;
    margin-top: 20%;
    margin-left: 60px;
    font-size:50px;
    text-shadow: 0px 0px 10px #7f03fc;
}
#homeSub{
    position: fixed;
    top: 5%;
    right:45%;
    z-index:-1;
    margin-left: 60px;
    font-size:50px;
    text-decoration-line: underline;
    text-decoration-color: #591f3f;
}
.homeButton{
    position: fixed;
    bottom: 50%;
    right: 50%;
    font-family: 'Ethiopian';
    border-radius:12px;
    background-color:transparent;
    border-color: transparent;
    transition-duration: 0.4s;
    font-size:25px;
    padding: 14px, 40px;
    animation: fix 2s forwards;
}

.fix{
    animation: fix 2s forwards;
}
@keyframes fix{
  0%{
    opacity: 0;
  }
  75%{
    opacity: 0;
  } 
  100%{
    opacity: 1;
  } 
}

.homeButton:hover{
    box-shadow: 0px 0px 15px #faf0ff;
}
video{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media(min-aspect-ratio: 16/9){
    video{
        width: 100%;
        height: auto;
    }
}

/*Texts fly up & Video fades away*/

#video{
    cursor:
      url(images/flowerCursor.png) 2 2,
      auto;
  animation: fadeIn 1s ease-in forwards 1s;
  z-index: -1;
}

@keyframes fadeIn{
  0%{
    opacity: 1;
  }
  25%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

#text{
  animation: moveUp 1s ease-in forwards 1s;
}

@keyframes moveUp{
  0%{
    text-shadow: 0px 0px 10px #7f03fc;
    transform: translateY(0%);
    opacity: 1;
  }
  99%{
    transform: translateY(-500%);
    opacity: .5;
  }
  100%{
    opacity: 0;
  }
}

#bottomRight{
  position: fixed;
  bottom: 0;
  right: 0;
  width:20%;
  height:auto;
  z-index:-1;
}

#topLeft{
  position: fixed;
  top: 0;
  left: 0;
  z-index:-1;
  height:auto;
}

/*Project CSS*/

#bottomRight{
  position: fixed;
  bottom: 0;
  right: 0;
  width:20%;
  height:auto;
  z-index:-1;
}
.header{
  padding: 60px;
  text-align: center;
  background-image: url(images/projectBanner.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 0px 0px 10px #7f03fc;
  font-size: 30px;
}

#schoolSubTitles{
    position: absolute;
    font-size: 35px;
    top:25%;
    left: 15%;
}
#projectSubTitles{
    position: absolute;
    font-size: 35px;
    top:25%;
    right: 15%;    
}
.schoolContainer{
    position: absolute;
    top: 45%;
    left: 10%;
}
.button{
  background-color: #F9899C;
  border-radius: 40px;
  border: transparent;
  padding: 15px 30px;
  text-align: center;
  margin: 3px 3px;
  transition-duration: 0.4s;
  font-size:25px;
  color:white;
}
.button:hover{
    background: #bf475b;
}
.projectContainer{
    position: absolute;
    top: 45%;
    right: 10%;
    text-align: right;
}
